import java.util.*;

public
class ThreadsArray extends Vector
{
	public ThreadsArray()
	{
		super();
	}
	public void add(ChatServerThread object)
	{
		this.addElement(object);
	}
	public ChatServerThread getThread(int index)
	{
		ChatServerThread result = null;
		try{
			result = (ChatServerThread) this.elementAt(index);
		}
		catch(ArrayIndexOutOfBoundsException e){
		}
		return result;
	}
}
